/* ===============================
   BLUE SECTION
   =============================== */
.blue-section {
  background-color: #005696; /* Match the dark blue in image */
  color: white;
  padding: 100px 100px; 
  max-width: 100%; /* Spans full width like the image */
  margin: 0 auto;
  display: flex;
  justify-content: center; /* Centers the group of items */
  gap: 40px; /* Space between columns */
  font-family: sans-serif; /* Clean professional font */
}

/* ===============================
   ITEM
   =============================== */
.blue-section .item {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns content to the left of the column */
  text-align: left;        /* Ensures text is left-aligned */
  opacity: 0;
  transform: translateY(60px);
}

/* ===============================
   IMAGE / ICON
   =============================== */
.blue-section .item img {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  object-fit: contain;
}

/* ===============================
   TEXT CONTENT
   =============================== */
.blue-section .item strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 700;
}

.blue-section .item p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9); /* Slightly softer white for body text */
}

/* ===============================
   ANIMATION
   =============================== */
.blue-section .item.animate-up {
  animation: slideUpOnce 0.9s ease-out forwards;
}

@keyframes slideUpOnce {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===============================
   RESPONSIVE (TABLET & MOBILE)
   =============================== */
@media (max-width: 1024px) {
  .blue-section {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .blue-section .item {
    min-width: 200px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .blue-section {
    padding: 40px 20px;
  }
  .blue-section .item {
    max-width: 100%;
  }
}